Skip to content

Commit e251674

Browse files
authored
Remove 'Translated by' notes (cp-algorithms#151)
1 parent b4190c2 commit e251674

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/data_structures/fenwick.md

-3
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,3 @@ struct FenwickTree2D {
191191

192192
* [Fenwick tree on Wikipedia](http://en.wikipedia.org/wiki/Fenwick_tree)
193193
* [Binary indexed trees tutorial on TopCoder](https://www.topcoder.com/community/data-science/data-science-tutorials/binary-indexed-trees/)
194-
195-
196-
Translated by [sylap97](http://codeforces.com/profile/sylap97)

src/graph/bridge-searching.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,8 @@ Constant $MAXN$ at beginning of code is initialised to maximum number of nodes i
7979
8080
It should be noted that this does not work correctly if multiple edges are present in the graph, as it actually ignores their presence. Of course, multiple edges must not be a part of the answer, so checks must be made in the function $IS$_$BRIDGE$. Another way to work with multiple edges more accurately is to transfer the number of edges by which we entered the current node(we all need to store this additionally).
8181
82-
## Tasks in online judges
83-
84-
Some tasks in which we aim to find bridges:
82+
## Practice Problems
8583
8684
- [UVA #796 "Critical Links" [difficulty: low]](http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=737)
8785
- [UVA #610 "Street Directions" [difficulty: medium]](http://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=551)
8886
- [Case of the Computer Network (Codeforces Round #310 Div. 1 E) [difficulty: hard]](http://codeforces.com/problemset/problem/555/E)
89-
90-
####Note: Translated by [NibNalin](http://codeforces.com/profile/NibNalin)

0 commit comments

Comments
 (0)