<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| The MIT License (MIT) | |
| Copyright (c) 2018 Pat Allan | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| #pragma once | |
| #include <string> | |
| #include <iostream> | |
| #include <fstream> | |
| #include <sstream> | |
| class csvfile; | |
| inline static csvfile& endrow(csvfile& file); | |
| inline static csvfile& flush(csvfile& file); |
| # overwrite master with contents of feature branch (feature > master) | |
| git checkout feature # source name | |
| git merge -s ours master # target name | |
| git checkout master # target name | |
| git merge feature # source name |
| from random import randint, random | |
| from math import floor | |
| def fisher_yates_shuffle(the_list): | |
| list_range = range(0, len(the_list)) | |
| for i in list_range: | |
| j = randint(list_range[0], list_range[-1]) | |
| the_list[i], the_list[j] = the_list[j], the_list[i] | |
| return the_list |