This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Nícolas dos Santos Carvalho | |
Maringá, PR - Brasil | |
12/03/2023 | |
Universidade Estadual de Maringá (UEM) | |
Matrizes Esparças | |
Este código é a implementação do exercicio 3 na página 59 do livro | |
"Projeto de Algoritmos Com Implementações em Pascal e C" de Ziviani |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Nícolas dos Santos Carvalho | |
Maringá, PR - Brasil | |
21/02/2023 | |
Campo Minado CLI feito por Nícolas dos Santos Carvalho | |
https://github.com/Cicolas | |
*/ | |
#include <stdio.h> | |
#include <locale.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Nícolas dos Santos Carvalho | |
# UEM 2022 | |
# Esse programa concatena todos os arquivos de uma dada pasta | |
# afim de criar somente um com todos os exercicios resolvidos | |
# | |
#?EXEMPLO: | |
# trabalhos/ | |
# ├─ fruber/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["ctrl+m"], "command": "find_under_expand" }, | |
{ "keys": ["f12"], "command": "move_to", "args": {"to": "brackets"} }, | |
{ "keys": ["ctrl+;"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+;"], "command": "toggle_comment", "args": { "block": true } }, | |
{ "keys": ["ctrl+d"], "command": "goto_definition" }, | |
{ "keys": ["ctrl+shift+e"], "command": "focus_side_bar" }, | |
{ "keys": ["ctrl+shift+e"], "command": "focus_side_bar" }, | |
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" }, | |
{ "keys": ["f6"], "command": "build" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Nícolas dos Santos Carvalho | |
Maringá, PR - Brasil | |
24/08/2022 | |
Sudoku CLI feito por Nícolas dos Santos Carvalho | |
https://github.com/Cicolas | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Nícolas Carvalho | |
* Maringá, PR - Brasil | |
* 27/06/2022 | |
* | |
* A utility code to convert yours objects into a html visualization. (Based on JSON.Stringfy()) | |
* | |
* https://github.com/Cicolas | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <stdio.h> | |
#include <conio.h> | |
// #define _WIN32_WINNT 0x0500 | |
#include <windows.h> | |
#include <time.h> | |
#include <locale.h> | |
#include <wincon.h> | |
#include <fstream> | |
#include <string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function getInRandomList(list) { | |
var s; | |
do { | |
s = list[Math.floor(Math.random() * 1000) % list.length]; | |
} while (s[1]) | |
return s; | |
} | |
export function Clamp(num, min, max) { |