-
Updated
Jul 5, 2022 - Markdown
#
solutions
Here are 1,898 public repositories matching this topic...
317 efficient solutions to HackerRank problems
-
Updated
Apr 20, 2022 - Java
Common solutions and tools developed by Google Cloud's Professional Services team
bigquery
tools
solutions
examples
gke
google-cloud-dataflow
google-cloud-platform
google-cloud-compute
google-cloud-ml
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 3, 2022 - HTML
Solutions of Reinforcement Learning, An Introduction
-
Updated
Jun 19, 2022 - Jupyter Notebook
Open
Concat order issue?
2
good first issue
Good for newcomers
My Answer to 120 Data Science Interview Questions
-
Updated
Oct 1, 2020 - Jupyter Notebook
Solutions to problems from various online judges / contest sites.
advent-of-code
solutions
codechef
uva
competitive-programming
hackerrank
codejam
codeforces
online-judges
hackerearth
uva-solutions
atcoder
kattis
hackerrank-solutions
codeforces-solutions
codechef-solutions
acepta-el-reto
hackerearth-solutions
kattis-solutions
atcoder-solutions
-
Updated
Apr 6, 2022 - C++
warycat
commented
Jan 20, 2021
The description md files can be copy paste from browser.
good first issue
Good for newcomers
Efficient solutions to "Cracking the Coding Interview" (6th Edition) problems
-
Updated
Oct 4, 2020 - Java
Self-study on Larry Wasserman's "All of Statistics"
-
Updated
Jun 28, 2022 - Jupyter Notebook
1000+ javascript solutions of leetcode problems.
javascript
algorithms
leetcode
solutions
data-structures
problems
1000plus
1100plus
1200plus
1300plus
1400plus
1500plus
1600plus
1700plus
1800plus
-
Updated
Jul 9, 2022 - JavaScript
Complete Assignments for CS231n: Convolutional Neural Networks for Visual Recognition
computer-vision
deep-learning
solutions
tensorflow
neural-networks
stanford
image-captioning
convolutional-neural-networks
dd
cs231n
visual-recognition
assignments
-
Updated
Apr 17, 2022 - Jupyter Notebook
Solutions to HackerRank problems
shell
solutions
hackerrank
hackerrank-python
hackerrank-solutions
hackerrank-algorithms-solutions
hackerrank-python-solutions
hackerrank-challenges
-
Updated
Oct 25, 2021 - Python
-
Updated
Jun 24, 2022 - Jupyter Notebook
Leetcode problems & solutions
-
Updated
Jan 13, 2022 - JavaScript
My Solutions to Codility (100% performance)
-
Updated
Apr 29, 2022 - Java
The solutions of all SQL hackerrank challenges using MySQL environment
mysql
challenge
sql
solutions
tutorials
hackerrank
problem-solving
hackerrank-solutions
hackerrank-challenges
hackerrank-sql
hackerrank-sql-solutions
mysql-environment
sql-challenges
select-challenges
-
Updated
Jun 22, 2022 - SQL
Solutions to the exercises in the book "The C Programming Language" (2nd edition) by Brian W. Kernighan and Dennis M. Ritchie. This book is also referred to as K&R.
c
language
programming-language
programming
solutions
solution
programming-exercises
programming-challenges
c-language
c-programming
-
Updated
Jun 30, 2022 - C
This repository contains coding assessments and their solutions for various IT companies
github
java
solutions
solution
hackerrank
questions
interview-practice
interview-questions
hackerearth
coding-interviews
interview-prep
interview-preparation
online-test
techgig
goldmansachs
javaaid
java-aid
kanahaiya
kanhaiya
hackerrank-test
-
Updated
Apr 30, 2020 - Java
CodeWars Solutions (Please leave a start. Thank you)
javascript
algorithms
solutions
competitive-programming
data-structures
codewars
algorithm-challenges
competitions
codewars-kata
codewars-solutions
codewars-training-exercise
algorithms-datastructures
codewarrior
algorithms-and-data-structures
codewars-challenges
codewars-kata-solution
codewars-javascript
-
Updated
Jul 8, 2022 - JavaScript
VastoLorde95's solutions to 2000+ competitive programming problems from various online judges
python
template
algorithm
datastructures
cpp
solutions
codechef
spoj
icpc
competitive-programming
hackerrank
data-structures
codejam
codeforces
hackerearth
timus
spoj-solutions
-
Updated
Feb 15, 2018 - C++
Solutions to Codeforces Problems
-
Updated
Jun 13, 2022 - C++
A Generative Adversarial Networks (GANs) Specialization made by deeplearning.ai on Coursera
github
machine-learning
course
solutions
solution
coursera
generative-adversarial-network
gan
courses
gans
generative-adversarial-networks
specialization
assignments
assignement
coursera-assignment
deeplearning-ai
-
Updated
Nov 21, 2020 - Jupyter Notebook
hingston
commented
Dec 30, 2021
Example:
Before:
-- 7 Billion Humans (2145) --
-- 46: Compulsory Office Romance --
a:
if e == worker
tell e Hi!
listen Hi!
else
listen Hi!
tell w Hi!
jump a
After:
-- 7 Billion Humans (2231) --
-- 46: Compulsory Office Romance --
a:
if e == worker:
tell e hi
listenfor hi
else:
listenfor hi
tell w hi
endif
jump a
I will try to find
bug
Something isn't working
help wanted
Extra attention is needed
good first issue
Good for newcomers
Improve this page
Add a description, image, and links to the solutions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the solutions topic, visit your repo's landing page and select "manage topics."
Nice work!
The version of implementation can reach 22+ BLUE score. However, my implementation have only 0.16+ BLUE score on test dataset. Comparing with your work, I found changing the concatenation
torch.cat((Y_t, o_pre), dim=1)
totorch.cat((o_pre, Y_t), dim=1)
can only reach 0.16+ BLUE score.B.W.T. chaging the concatenating order between
dec_hidden
anda_t
instep
function also