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
// wordPuzzle.cpp | |
// juanfc 2022-12-07 | |
// juanfc 22/1/02-2012-02-07-2015-02-02 | |
// Program to find words in a word search game | |
// https://gist.github.com/juanfal/b4f5e72a12b0549e2014b7cebc5b5b81 | |
#include <iostream> | |
#include <array> | |
#include <iomanip> | |
using namespace std; |
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
// 1.nonRepPrime.cpp | |
// juanfc 2024-12-16 | |
// | |
// 1 3 4 6 2 3 5 11 0 -> 2 5 11 | |
// 1 3 2 3 2 0 -> 0 | |
// 1 1 1 0 -> 0 | |
#include <iostream> | |
#include <array> |
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
// 2.isMagic.cpp | |
// juanfc 2024-12-16 | |
// | |
#include <iostream> | |
#include <array> | |
using namespace std; | |
const int N = 3; | |
typedef array<array<int,N>,N> TSqMat; |
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 ruby | |
# | |
# 2024-12-17 | |
# To gist | |
# 2016-07-25 | |
# 2023-07-29 | |
# Fixed many mistakes if not all. It simply adds the new items to the | |
# already selected on Finder | |
# inspired on | |
# http://www.red-sweater.com/AppleScript/ |
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
// 2.matCent.cpp | |
// juanfc 2024-02-08 | |
// https://gist.github.com/juanfal/a0ae972d1806eb00c3de0d4eef3cd76f | |
#include <iostream> | |
#include <array> | |
using namespace std; | |
const int R = 4; | |
const int C = 3; |
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
// 1.sameSDig.cpp | |
// juanfc 2024-02-08 | |
// | |
#include <iostream> | |
using namespace std; | |
const int NMAX_DIFF = 50; | |
typedef array<int,NMAX_DIFF> TVec; |
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
// centrovector.cpp | |
// juanfc 2014-02-25 | |
// | |
// Consider a vector V that contains N natural values (an array of naturals of | |
// size N, being N any constant). Define the centre c of vector V as the index | |
// between 1 and N–2 that follows: | |
// | |
// This property is not always met; in that case we say that there is no centre. | |
// Design procedure centreOfVector that receives a vector V as parmeter and | |
// returns two values as parameters: first one says if there is a centre and |
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
// 07.nword.cpp | |
// juanfc 2024-11-15 | |
// https://gist.github.com/juanfal/4dce7934f0da9dce7fb0030302ac2673 | |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
string wordn(string s, int n); |
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
// substrneg.cpp | |
// juanfc 2024-11-11 | |
// https://gist.github.com/juanfal/fe6f9f7369ff4358c80725781949a6ca | |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
void tryThis(string s, int from, int end = -1); |
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
// 00.basicArraySubprograms.cpp | |
// juanfc 2024-11-04 | |
// | |
#include <iostream> | |
#include <array> | |
using namespace std; | |
// consts | |
const int N=5; |
NewerOlder