Problems Solved / Number of All Problems

Please add Number of All Problems on the main page (dashboard).

In the tile of problem solved simple statistic are showed for each category of problems, for example:
Easy 329 / 518

Can you show it the same way also for all problems?
Something like:
Problems Solved 889 / 2035

If there is enough space, also a percentage, like in this example 43.6% problems are solved.

image

@leetcode

The code on the main page: https://leetcode.com/Silvia42/

<div class="stats-visual-wrapper__2jzx">
	<div class="css-57z4bo-StatisticWrapper">
		<div class="css-h2iuu8">Problems Solved</div>
		<div class="total-solved-count__2El1 css-57pydk">889</div>
	</div>
	<div size="108" class="css-160uff4-PercentContainer e5i1odf0">
	<div radius="52.3125" class="css-o76bfb-PercentTrack e5i1odf5">
	</div>
	

The code on the Problems page: https://leetcode.com/problemset/all/

<div data-difficulty="TOTAL" class="text-center truncate">
	<div class="text-[11px] mb-[1px]">
		<span class="text-label-3 dark:text-dark-label-3">All</span>
	</div>
	<div class="text-dark-paper dark:text-paper font-medium text-xl 
		lg:text-2xl lg:leading-none leading-none pb-0.5">
		889
	</div>
	<hr class="max-w-[32px] mx-auto border-divider-2 dark:border-dark-divider-2">
	<div class="text-label-4 dark:text-dark-label-4 pt-0.5 text-xs font-semibold">
	2035
	</div>
</div>
Comments (3)