Skip to content

Instantly share code, notes, and snippets.

@juanfal
juanfal / wordPuzzle.cpp
Last active January 29, 2025 13:07
Word Puzzle
// 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;
@juanfal
juanfal / 1.nonRepPrime.cpp
Created December 17, 2024 13:08
non-repeated primes
// 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>
@juanfal
juanfal / 2.isMagic.cpp
Created December 17, 2024 13:06
isMagic
// 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;
@juanfal
juanfal / selectinfinder.rb
Created December 17, 2024 12:44
select in Finder front Window from terminal, can add more to the already selected.
#!/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/
@juanfal
juanfal / 2.matCent.cpp
Last active December 10, 2024 11:23
first cell sum up neighbours
// 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;
@juanfal
juanfal / 1.sameSDig.cpp
Created December 9, 2024 20:08
numbers with the same sum of digits
// 1.sameSDig.cpp
// juanfc 2024-02-08
//
#include <iostream>
using namespace std;
const int NMAX_DIFF = 50;
typedef array<int,NMAX_DIFF> TVec;
@juanfal
juanfal / ex2.centrovector.cpp
Created December 4, 2024 12:25
center of vector
// 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
@juanfal
juanfal / 07.nword.cpp
Last active November 21, 2024 08:50
word n of a string
// 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);
@juanfal
juanfal / substrneg.cpp
Last active November 19, 2024 15:39
substrneg
// 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);
@juanfal
juanfal / 00.basicArraySubprograms.cpp
Created November 4, 2024 10:02
basic array subprograms
// 00.basicArraySubprograms.cpp
// juanfc 2024-11-04
//
#include <iostream>
#include <array>
using namespace std;
// consts
const int N=5;