This website works better with JavaScript.
Explore
Intra
Help
Sign In
root
/
public
mirror of
https://github.com/01-edu/public.git
Watch
14
Star
27
Fork
already_forked%!(EXTRA string=public)
0
Code
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1373
Commits
41
Branches
11
Tags
349 MiB
Tree:
464d4e4816
CON-1836-MARKDOWN-Fix-virtualisation-linux-project
CON-1994-Update-subjects-with-rand-crate-dependency
CON-2175-Markdown-create-subject-for-Freeze-exercise
CON-2176-Tests-create-test-for-freeze-exercise
CON-2195-Markdown-create-subject-for-jabs-subject
CON-2196-Tests-create-test-for-jabs-subject
CON-2198-MARKDOWN-create-subject-of-more-exercise
CON-2199-TESTS-create-test-of-more-exercise
CON-2209-MARKDOWN-create-subject-for-less-exercise
CON-2210-TESTS-add-test-of-less-exercise
CON-2212-MARKDOWN-add-subject-for-add-exercise
CON-2213-TESTS-add-test-for-add-exercise
CON-2229-MARKDOWN-create-suffix-subject
CON-2232-MARKDOWN-create-wave-subject
CON-2233-TESTS-create-wave-test
CON-2238-MARKDOWN-add-subject-of-sub-exercise
CON-2239-TESTS-add-test-of-sub-exercise
CON-2241-MARKDOWN-create-vowelSign-subject
CON-2242-TESTS-create-vowelSign-tests
CON-2244-MARKDOWN-create-splitStringIntoPairs-Subject
CON-2245-TEST-create-splitStringIntoPairs-tests
CON-2247-MARKDOWN-create-subject-of-sortBydir
CON-2250-MARKDOWN-create-oneMatch-Subject
CON-2253-MARKDOWN-create-asterisksfirst-subject
CON-2254-MARKDOWN-create-numberOfLetters-subject
CON-3010-Markdown-Quest01-the-smooth-operator
CON-3094-Fix-NascarOnlineAlpha-Project
CON-3095-Markdown-GameDev-NascarOnlineAlpha
CON-3116-Fix-nascar-online-alpha-subject-and-audit
CON-3133-Fixing-Emotions-detector-project
CON-3172-Fix-Subject-Audit-AI-Credit-Scoring
CON-3179-Markdown-structure-subject-ai-sp500
CON-3189-Update-structure-for-piscine
CON-3221-Fix-the-class-it-test-so-it-accepts-reverted-order-of-classes
DEV-4049-remove-alcohol-terminology
DEV-4397-piscine-ai-missing-file-for-ex-7-of-nlp
DEV-4415-crud-master-api-definition
MohcineDev-master
master
revert-2104-CON-1813-MARKDOWN-chaikin-raid-for-java-piscine
revert-2708-CON-3132-remake-the-inspector-image-project
v24.13.0-2024.06.21
v24.13.2-2024.06.27
v24.14.0-2024.07.04
v24.15.0-2024.07.16
v24.16.0-2024.07.31
v24.17.0-2024.08.13
v24.18.0-2024.08.27
v24.19.0-2024.09.12
v24.20.0-2024.09.25
v24.21.0-2024.10.10
v24.22.0-2024.10.23
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '464d4e4816'
${ noResults }
public
/
tests
/
go
/
solutions
/
sortintegertable.go
8 lines
83 B
Raw
Normal View
History
unescape_control_characters
escape_control_characters
Externalize tests
5 years ago
package
solutions
Refactor & Beautify & destruction commit return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc. Some of the reasons behind those modifications will be added to good-practices.en.md Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
import
"sort"
Externalize tests
5 years ago
Refactor & Beautify & destruction commit return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc. Some of the reasons behind those modifications will be added to good-practices.en.md Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
func
SortIntegerTable
(
a
[
]
int
)
{
sort
.
Ints
(
a
)
Externalize tests
5 years ago
}