This file contains hidden or 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
| /* | |
| 06-6-string-ROT13.c | |
| Tratamiento de strings. | |
| Aplica ROT13 a una cadena de caracteres. | |
| */ | |
| #include <stdio.h> | |
| char rot13(char caracter); |
This file contains hidden or 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
| import csv | |
| import json | |
| from flask import Flask, render_template | |
| # reference: https://stackoverflow.com/questions/29631711/python-to-parent-child-json | |
| # create a helper class for each tree node | |
| class Node(object): | |
| # generate new node | |
| def __init__(self, cluster): |