Git Product home page Git Product logo

programacao-funcional's Introduction

Hello there! I'm Sofia! 😊

LinkedIn badge Instagram badge Email badge

I'm a graduate student of Software Engineering at University of Minho 👩‍💻. I'm also an invited assistant at University of Minho, currently teaching Functional Programming and Language Processing classes. 👩‍🏫

💜 About me

I was born and raised in Braga 🇵🇹, where I currently live, study and work. I'm a full-time geek and LEGO lover, with a small passion for cinema and writing.

My pronouns are she/her. 🤍

My GitHub stats Top Languages

🎓 My college projects and solved exercises

1st year - 1st semester
Programação Funcional Exercises -
Laboratórios de Informática I - Project
1st year - 2nd semester
Programação Imperativa Exercises -
Laboratórios de Informática II Exercises Project
2nd year - 2nd semester
Programação Orientada aos Objetos Exercises Project
Sistemas Operativos Exercises Project
Laboratórios de Informática III - Projects
Cálculo de Programas - Project
3rd year - 1st semester
Sistemas Distribuídos Exercises Project
Redes de Computadores - Projects
Bases de Dados - Project
Modelos Determinísticos de
Investigação Operacional
- Projects
3rd year - 2nd semester
Computação Gráfica Exercises Project
Processamento de Linguagens Exercises Projects
Master's Dissertation
ACE Grader

🧩 My other projects

💻 My programming skills

  • Python
  • Haskell
  • C / C++
  • Java
  • Elixir / Phoenix
  • MySQL / PostgreSQL / MongoDB
  • Ruby / Ruby on Rails
  • Rust
  • HTML / CSS (TailwindCSS lover)
  • Javascript

Hopefully I can add as many items to this list as possible in the future!

programacao-funcional's People

Contributors

risingfisan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

programacao-funcional's Issues

Erro em 50questoes.hs

Erro na função vizinhos :

Chamada da função myvizinhos (linha 408 e 409) em vez de vizinhos'

vizinhos' :: Posicao -> [Posicao] -> [Posicao]
vizinhos' _ [] = []
vizinhos' (Pos x y) ((Pos xv yv):ps) = if abs (x - xv) == 1 && y == yv || abs (y - yv) == 1 && x == xv
then (Pos xv yv):myvizinhos (Pos x y) ps
else myvizinhos (Pos x y) ps

Found a bug on exercise 45

I found a bug where the variable "ms" is used instead of "t". This causes the program to crash because "ms" is not defined anywhere.
I am forwarding the answer I think is right.

catMaybes :: [Maybe a] -> [a] catMaybes [] = [] catMaybes ((Just a):t) = a:catMaybes t catMaybes ((Nothing):t) = catMaybes t

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.